/* This code is only meant for previewing your Reflow design. */
.primaryContainer {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    min-height: 100%;
    width: 100%;
}

#box {
    float: none;
    height: 200px;
    margin-left: auto;
    margin-top: 0px;
    clear: none;
    width: 1200px;
    min-width: 0px;
    margin-right: auto;
}

@media only screen and (max-width: 1200px) {
    #box {
        width: 1200px;
    }
}

@media only screen and (max-width: 1024px) {
    #box {
        width: 1024px;
    }
}

@media only screen and (max-width: 768px) {
    #box {
        width: 768px;
    }
}

@media only screen and (max-width: 480px) {
    #box {
        height: 340px;
        width: 480px;
    }
}

@media only screen and (max-width: 320px) {
    #box {
        height: 480px;
        width: 320px;
    }
}

